home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmOpen
- Caption = "Open"
- ClientHeight = 3348
- ClientLeft = 48
- ClientTop = 336
- ClientWidth = 5268
- LinkTopic = "Form2"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3348
- ScaleWidth = 5268
- StartUpPosition = 1 'CenterOwner
- Begin VB.TextBox Text1
- Height = 288
- Left = 240
- TabIndex = 5
- Top = 2400
- Width = 4812
- End
- Begin VB.Frame Frame1
- Caption = "Select File from above or enter file name below."
- Height = 612
- Left = 120
- TabIndex = 6
- Top = 2160
- Width = 5052
- End
- Begin VB.FileListBox File1
- Height = 1608
- Left = 2640
- TabIndex = 4
- Top = 480
- Width = 2532
- End
- Begin VB.DriveListBox Drive1
- Height = 288
- Left = 120
- TabIndex = 3
- Top = 120
- Width = 5052
- End
- Begin VB.DirListBox Dir1
- Height = 1584
- Left = 120
- TabIndex = 2
- Top = 480
- Width = 2412
- End
- Begin VB.CommandButton Command2
- Caption = "Cancel"
- Height = 375
- Left = 4200
- TabIndex = 1
- Top = 2880
- Width = 972
- End
- Begin VB.CommandButton Command1
- Caption = "Open"
- Height = 375
- Left = 3120
- TabIndex = 0
- Top = 2880
- Width = 972
- End
- Attribute VB_Name = "frmOpen"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Unload Me
- End Sub
- Private Sub Command2_Click()
- Unload Me
- End Sub
- Private Sub Dir1_Change()
- File1.Path = Dir1.Path
- Text1 = File1.Name
- End Sub
- Private Sub Drive1_Change()
- Dir1.Path = Drive1.Drive
- Text1 = Dir1.Path
- End Sub
- Private Sub File1_Click()
- Text1 = File1.filename
- End Sub
-